사이트 내 전체검색
PHP
[PHP] 왼쪽메뉴 효율적으로 작업하기
로빈아빠
https://cmd.kr/php/651 URL이 복사되었습니다.

본문

아래와 같이  header.leftmenu,php  와  세부메뉴 파일을 분리합니다.
세부메뉴파일은  leftmenu.01.php  과 같은 네이밍을 합니다.   로그인 기본 파일은  leftmenu.00.php  입니다.

<? include_once "_happyjung_.php"; // 공통

////////////// 회사소개
if ($_SERVER['PHP_SELF'] =='/2008/mares/intro.php' || $_SERVER['PHP_SELF'] =='/2008/mares/history.php') {
  include ("leftmenu.01.php");

////////////// 교육과정
} elseif ($_SERVER['PHP_SELF'] =='/2008/education/main.php') {
  include ("leftmenu.02.php");  

////////////// 여행
} elseif ($bo_table == 'tour_local' || $_SERVER['PHP_SELF'] =='/2008/tour/012.php') {
  include ("leftmenu.03.php");

////////////// 장비
} elseif ($ca_id =='a0' || $ca_id =='b0' || $ca_id =='c0' || $ca_id =='40') {
  include ("leftmenu.04.php");

////////////// 게시판
} elseif ($bo_table =='notice' || $bo_table =='free') { 
  include ("leftmenu.05.php");

////////////// 회원로그인
} else {
  include ("leftmenu.00.php");
}
?>

댓글목록

등록된 댓글이 없습니다.

PHP
871 (7/18P)

Search

Copyright © Cmd 명령어 3.138.110.119